From 9e300e0ff0c9d93cbaeaa86c1e2a560523107382 Mon Sep 17 00:00:00 2001 From: Sebastien Castiel Date: Mon, 29 Jan 2024 22:37:13 -0500 Subject: Use React’s cache to avoid some queries to the database MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/groups/[groupId]/edit/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/app/groups/[groupId]/edit') diff --git a/src/app/groups/[groupId]/edit/page.tsx b/src/app/groups/[groupId]/edit/page.tsx index be1a5a8..c174c37 100644 --- a/src/app/groups/[groupId]/edit/page.tsx +++ b/src/app/groups/[groupId]/edit/page.tsx @@ -1,5 +1,6 @@ +import { cached } from '@/app/cached-functions' import { GroupForm } from '@/components/group-form' -import { getGroup, getGroupExpensesParticipants, updateGroup } from '@/lib/api' +import { getGroupExpensesParticipants, updateGroup } from '@/lib/api' import { groupFormSchema } from '@/lib/schemas' import { Metadata } from 'next' import { notFound, redirect } from 'next/navigation' @@ -13,7 +14,7 @@ export default async function EditGroupPage({ }: { params: { groupId: string } }) { - const group = await getGroup(groupId) + const group = await cached.getGroup(groupId) if (!group) notFound() async function updateGroupAction(values: unknown) { -- cgit v1.3